modelbutton: Hide checks initially
authorMatthias Clasen <mclasen@redhat.com>
Sun, 20 Dec 2015 01:16:51 +0000 (20:16 -0500)
committerMatthias Clasen <mclasen@redhat.com>
Sun, 20 Dec 2015 01:16:51 +0000 (20:16 -0500)
Manually constructed model buttons were always ending up
with a check. Fix that by hiding the indictator node initially.

gtk/gtkmodelbutton.c

index c7f22c55d2807d786ea9202a434da4894c944015..32ef333abf534c6ba8c03ad65dd4e3b1714ae7cc 100644 (file)
@@ -1212,6 +1212,7 @@ gtk_model_button_init (GtkModelButton *button)
 {
   GtkCssNode *widget_node;
 
+  button->role = GTK_BUTTON_ROLE_NORMAL;
   gtk_button_set_relief (GTK_BUTTON (button), GTK_RELIEF_NONE);
   button->box = gtk_box_new (GTK_ORIENTATION_HORIZONTAL, 6);
   gtk_widget_set_margin_start (button->box, 12);
@@ -1243,6 +1244,7 @@ gtk_model_button_init (GtkModelButton *button)
                                                    NULL);
   gtk_builtin_icon_set_default_size (GTK_BUILTIN_ICON (button->indicator_gadget), 16);
   update_node_ordering (button);
+  gtk_css_node_set_visible (gtk_css_gadget_get_node (button->indicator_gadget), FALSE);
 }
 
 /**